Release 10.1A: OpenEdge Getting Started:
Database Essentials
Increasing disk reliability with RAID
It is important to understand the terms reliability and performance as they pertain to disks. Reliability is the ability of the disk system to accommodate a single- or multi-disk failure and still remain available to the users. Performance is the ability of the disks to present information to the users in an efficient manner.
Adding redundancy almost always increases the reliability of the disk system. The most common way to add redundancy is to implement a Redundant Array of Inexpensive Disks (RAID).
There are two types of RAID:
- Hardware — The most commonly used hardware RAID levels are: RAID 0, RAID 1, RAID 5, and RAID 10. The main differences between these RAID levels focus on reliability and performance as defined earlier in this section.
- Software — Software RAID can be less expensive. However, it is almost always much slower than hardware RAID, since it places a burden on the main system CPU to manage the extra disk I/O.
The different hardware RAID types are as follows:
- RAID 0: Striping
RAID 0: Striping has the following characteristics:
- High performance — Performance benefit for randomized reads and writes.
- Low reliability — No failure protection.
- Increased risk — If one disk fails, the entire set fails.
The disks work together to send information to the user. While this arrangement helps performance, it can cause a potential problem. If one disk fails, the entire file system is corrupted
- RAID 1: Mirroring
RAID 1: Mirroring has the following characteristics:
- Medium performance — Superior to conventional disks due to “optimistic read.”
- Expensive — Requires twice as many disks to achieve the same storage and twice as many controllers if you want redundancy at that level.
- High reliability — Loses a disk without an outage.
- Good for sequential reads and writes — The layout of the disk and the layout of the data are sequential, promoting a performance benefit, provided that you can isolate a sequential file to a mirror pair.
In a two disk RAID 1 system, the first disk is the primary disk and the second disk acts as the parity or mirror disk. The role of the parity disk is to keep an exact synchronous copy of all of the information stored on the primary disk. If the primary disk fails, the information can be retrieved from the parity disk.
Ensure that you have “hot swappable” disks so repairs can be made without bringing down the system. Most RAID 1 disks are “hot swappable.” Note that there is a performance penalty during the resynchronization period.
On a read, the disk that has its read/write heads positioned closer to the data will retrieve information. This data retrieval technique is known as an optimistic read. An optimistic read can provide a maximum of 15 percent improvement in performance over a conventional disk. When setting up mirrors, it is important to look at which physical disks are being used for primary and parity information, and to balance the I/O across physical disks rather than logical disks.
- RAID 10 or 1+0
RAID 10 or 1+0, more commonly referred to as RAID 10, has the following characteristics:
- High reliability — Provides mirroring and striping.
- High performance — Good for randomized reads and writes.
- Low cost — No more expensive than RAID 1 mirroring.
RAID 10 resolves the reliability problem of striping by adding mirroring to the equation.
Note: RAID 10 is the level recommended by Progress Software Corporation if you are implementing a RAID solution.- RAID 5
RAID 5 has the following characteristics:
- High reliability — Provides good failure protection.
- Low performance — Performance is poor for writes due to the parity’s construction.
Caution: Progress Software Corporation recommends against using RAID 5 for database systems.- Absorbed state — Running in an “absorbed” state provides diminished performance throughout the application because the information must be reconstructed from parity.
It is possible to have both high reliability and high performance. However, the cost of a system that delivers both of these characteristics will be higher than a system that is only reliable or only efficient.
|
Copyright © 2005 Progress Software Corporation www.progress.com Voice: (781) 280-4000 Fax: (781) 280-4095 |